Supervised Learning
4)Supervised Learning
Supervised Learning is the machine learning task of learning a function that maps an input to an output based on example input-output pairs. Here the mapping is done by the label data provided by the user
There are many features there in the Supervised Learning. Some of them are
Features of Supervised Learning
- Support vector machines *
- Linear regression *
- Logistic regression *
- Naive Bayes
- Linear Discriminant Analysis
- Decision Trees *
- K-Nearest Neighbors *
- Neural Networks *
- Similarity Learning
In order to solve a given problem of supervised learning, one has to perform the following steps:
Determine the type of training examples. Before doing anything else, the user should decide what kind of data is to be used as a training set. In the case of handwriting analysis, for example, this might be a single handwritten character, an entire handwritten word, or an entire line of handwriting.
Gather a training set. The training set needs to be representative of the real-world use of the function. Thus, a set of input objects is gathered and corresponding outputs are also gathered, either from human experts or from measurements.
Determine the input feature representation of the learned function. The accuracy of the learned function depends strongly on how the input object is represented. Typically, the input object is transformed into a feature vector, which contains a number of features that are descriptive of the object. The number of features should not be too large, because of the curse of dimensionality; but should contain enough information to accurately predict the output.
Determine the structure of the learned function and corresponding learning algorithm. For example, the engineer may choose to use support vector machines or decision trees
Complete the design. Run the learning algorithm on the gathered training set. Some supervised learning algorithms require the user to determine certain control parameters. These parameters may be adjusted by optimizing performance on a subset (called a validation set) of the training set, or via cross-validation.
Evaluate the accuracy of the learned function. After parameter adjustment and learning, the performance of the resulting function should be measured on a test set that is separate from the training set.
<source Wikipedia>
If you read the above all steps...congrats you have a good level of patience. Patience is the essential thing while learning machine learning
All Right....Lets Quickly Do Some Algorithms with Practical Examples
Note : Features which are having stars are only practiced in the upcoming classes Because they are very important in machine learning
<Prev> <Next>

Comments
Post a Comment